
#############################################################
##################LUSE'S KALLIMACHOS PROJECT#################
#############################################################


INSTALL THE LIBRARY IN THREE STEPS:


[1] Extract the archive in your web directory (for example ".../htdocs" or ".../proxy" )



[2] Edit the following values in "connect.php" file:
    
    
    USERNAME --------> your MySQL username

    USERPASSWORD ----> your MySQL password

    DATABASE --------> libri


    Then save the file.



[3] From the MySQL console, launch the following queries (copy-and-past): 


mysql->

----------------------------------------------
create database libri;
connect libri;
----------------------------------------------

then 

----------------------------------------------
CREATE TABLE `kallimachos` (
  `Titolo` varchar(255) NOT NULL default '',
  `Autore` varchar(255) NOT NULL default '',
  `Traduttore` varchar(255) default '...',
  `Edizione` varchar(255) NOT NULL default '',
  `Genere` varchar(255) NOT NULL default '',
  `Pagine` varchar(20) NOT NULL default '0',
  `ISBN` int(8) default NULL,
  PRIMARY KEY  (`Titolo`)
) TYPE=MyISAM;
----------------------------------------------

Now you can enter the library by your Internet Browser.
ENJOY IT!!!





PAY ATTENTION:

-> MySQL database and PHP must be installed previously 

-> If you need help, send an e-mail to <<< luse87@fastwebnet.it >>> 
   We'll contact you as soon as possible.


##Genoa , June 2004##


